home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / var / lib / dpkg / info / libgsl0ldbl.postinst < prev    next >
Text File  |  2008-12-22  |  777b  |  38 lines

  1. #!/bin/sh -e
  2. #
  3. # postinst script for the Debian GNU/Linux libgsl0 package
  4. #
  5. # Written and GPL'ed by Dirk Eddelbuettel <edd@debian.org>   
  6.  
  7. # Automatically added by dh_makeshlibs
  8. if [ "$1" = "configure" ]; then
  9.     ldconfig
  10. fi
  11. # End automatically added section
  12.  
  13.  
  14. case "$1" in
  15.  
  16.     configure)     
  17.         # Previous versions installed libgsl in /usr/lib/gsl/
  18.     # Due to a typo in gsl (<= 0.5), this might be left over
  19.     if grep -qs ^/usr/lib/gsl\$ /etc/ld.so.conf 
  20.     then
  21.         sed '/^\/usr\/lib\/gsl$/d' /etc/ld.so.conf \
  22.                         > /etc/ld.so.conf.gsl-tmp
  23.         mv /etc/ld.so.conf.gsl-tmp /etc/ld.so.conf
  24.     fi
  25.     ;;
  26.  
  27.     upgrade|abort-upgrade|abort-remove|abort-deconfigure)
  28.     ;;
  29.  
  30.     *)
  31.         echo "postinst called with unknown argument \`$1'" >&2
  32.         ;;
  33.  
  34. esac
  35.  
  36. exit 0                 
  37.  
  38.